home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_12 / schmidt / mundo3.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-11  |  250 b   |  24 lines

  1. =========
  2. Listing 5
  3. final translation unit
  4. ======================
  5.  
  6. //
  7. //  mundo.cpp
  8. //
  9. #define HERE 1 // HERE is referenced by both .h files
  10.  
  11. //
  12. //  hither.h
  13. //
  14.     static int hither = 0;
  15. //
  16. //  yon.h
  17. //
  18.     extern int yon;
  19.  
  20. void main()
  21.     {
  22.     }
  23.  
  24.